HEX
Server: LiteSpeed
System: Linux eticaretsrv4.isimtescil.net 3.10.0-962.3.2.lve1.5.26.7.el7.x86_64 #1 SMP Wed Oct 2 07:53:12 EDT 2019 x86_64
User: sioberen (1086)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: //opt/alt/python37/lib64/python3.7/site-packages/cryptography/hazmat/primitives/interfaces.py
# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.

from __future__ import absolute_import, division, print_function

from cryptography import utils
from cryptography.hazmat.primitives.mac import MACContext as _MACContext


MACContext = utils.deprecated(
    _MACContext,
    __name__,
    "MACContext was moved to cryptography.hazmat.primitives.mac.MACContext "
    "in version 1.9.",
    utils.DeprecatedIn19
)